home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Files / Errors / FileNotFoundError.h < prev    next >
Text File  |  1997-06-28  |  291b  |  21 lines

  1. // FileNotFoundError.h
  2.  
  3. #ifndef FileNotFoundError_h
  4. #define FileNotFoundError_h
  5.  
  6. #ifndef FileError_h
  7. #include "FileError.h"
  8. #endif
  9.  
  10. class FileNotFoundError: public FileError
  11.   {
  12.     public:
  13.         FileNotFoundError( OSErr error )
  14.           : FileError( error )
  15.           {}
  16.         
  17.         // Used for fnfErr
  18.   };
  19.  
  20. #endif
  21.